home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / util4 / cliphn12.lha / AutoDocs / clip-handler.doc
Text File  |  1995-11-21  |  2KB  |  62 lines

  1. TABLE OF CONTENTS
  2.  
  3. clip-handler/clip_handler()
  4. clip-handler/clip_handler()                       clip-handler/clip_handler()
  5.  
  6.    NAME
  7.        clip_handler -- a handler for clipboard access. (V37)
  8.  
  9.    SYNOPSIS
  10.        Open("CLIP:[unit_num]");
  11.  
  12.    FUNCTION
  13.        Clip-handler allows AmigaDOS to interface to a standard clipboard
  14.        device. Clip-handler takes data from an application, packs it into
  15.        FTXT CHRS format and stores in clipboard. Or it takes data FTXT CHRS
  16.        data from the clipboard and passes it into an application.
  17.  
  18.    INPUTS
  19.        unit_num - clipboard.device unit number. Must be in 0-255 range.
  20.                   Default values is PRIMARY_CLIP.
  21.  
  22.    PACKETS
  23.        ACTION_FINDINPUT
  24.        ACTION_FINDOUTPUT
  25.        ACTION_READ
  26.        ACTION_WRITE
  27.        ACTION_END
  28.        ACTION_DIE
  29.        ACTION_IS_FILESYSTEM
  30.  
  31.    MOUNTLIST ENTRIES
  32.        This is default mountlist entry used for clip-handler:
  33.  
  34.               CLIP:   Handler   = L:clip-handler
  35.                       Priority  = 5
  36.                       StackSize = 4096
  37.                       GlobVec   = -1
  38.               #
  39.  
  40.    NOTES
  41.        At present only FTXT CHRS chunks are recognized and utilized.
  42.  
  43.    EXAMPLES
  44.        Store Startup-Sequence in default clipboard unit:
  45.               Copy S:Startup-Sequence CLIP:
  46.  
  47.        Get directory's listing and place it in clipboard unit 1:
  48.               List >CLIP:1
  49.  
  50.        View clipboard's contents
  51.               Type CLIP:
  52.  
  53.    BUGS
  54.        Accessing CLIP: for reading and writing at the same time will hang
  55.        clip-handler.
  56.        Neither appending data (ACTION_FINDUPDATE) nor seeking (ACTION_SEEK)
  57.        is supported yet.
  58.  
  59.    SEE ALSO
  60.        clipboard.device, iffparse.library.
  61.  
  62.